Dashboard Temp Share Shortlinks Frames API

huxn-webdev - HTMLify profile

files of /huxn-webdev/HTML-CSS-JavaScript-100-Projects/98. Meal Finder/

app.js /huxn-webdev/HTML-CSS-JavaScript-100-Projects/98. Meal Finder/app.js
13 Views
0 Comments
const searchMeal = async (e) => {
e.preventDefault();

// Select Elements
const input = document.querySelector(".input");

index.html /huxn-webdev/HTML-CSS-JavaScript-100-Projects/98. Meal Finder/index.html
19 Views
0 Comments
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"
style.css /huxn-webdev/HTML-CSS-JavaScript-100-Projects/98. Meal Finder/style.css
13 Views
0 Comments
* {
box-sizing: border-box;
}

nav {
display: flex;
justify-content: space-around;
align-items: center;